home *** CD-ROM | disk | FTP | other *** search
- function onPageLoad()
- {
- window.resizeTo(800, 600);
- }
-
- function GetToken(str, token, delimiter)
- {
- var idx = str.indexOf(token + '=');
- var argstr = str.substring(idx + token.length + 1);
- idx = argstr.indexOf(delimiter);
- return idx >=0 ? argstr.substring(0, idx) : argstr;
- }
-
- function onButtonClick(index)
- {
- switch (index) {
- case 0:
- alert("hello");
- window.location = "page2.htm";
- break;
- case 1:
- alert("world");
- break;
- }
- }
-